home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / misc / avmNfax1_33.lha / AVMSuite / rexx / openmailbox.avm < prev    next >
Text File  |  1994-06-24  |  417b  |  15 lines

  1. /* */
  2. parse arg mailbox special .
  3.  
  4. if special = 1 | special = 0 then
  5.     address command 'run >nil: <nil: avm:logview' mailbox
  6. else if special = 2 then
  7.     address command 'run >nil: <nil: avm:scheduler' mailbox
  8. else if special = 3 then
  9.         if upper(mailbox) = 'OUTGOING' then
  10.         address command 'run >nil: <nil: avm:scheduler' mailbox
  11.     else
  12.         address command 'run >nil: <nil: avm:scheduler' mailbox '-noschedule'
  13.  
  14. exit
  15.